home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Audio / Patchmix / XWindowsSource / makefile < prev    next >
Makefile  |  1992-03-28  |  2KB  |  86 lines

  1. ARCH=NeXT
  2. CC = cc++
  3. CFLAGS = -O -bsd -fstrength-reduce -finline-functions -I/usr/include/g++
  4. POBJECTS = patch.o xset.o xmenu.o xpanel.o xselect.o xevent.o xparam.o \
  5.     xdata.o inst.o unit_gen.o tree.o list.o misc.o graph.o \
  6.     linker.o soundfile.o nutree.o
  7. LXTLIB=    /usr/local/src/lxt/liblxt_$(ARCH).a
  8. LIBS=    $(LXTLIB) -lX11 -lm
  9.  
  10. # $Header: makefile,v 1.3 91/02/13 09:48:42 mara Exp $
  11. #
  12. # Written by Mara Helmuth
  13. #
  14. # Description: Makefile for Cmix X graphical interface
  15. #
  16. # $Log:    makefile,v $
  17. # Revision 1.3  91/02/13  09:48:42  mara
  18. # dependencies
  19. # Revision 1.2  90/09/05  22:15:02  mara
  20. # deleted ntree
  21. # Revision 1.1  90/08/27  17:13:19  mara
  22. # Initial revision
  23. # Revision 1.6  90/05/18  23:25:38  mara
  24. # xdata.c now has data window
  25. # Revision 1.5  90/05/13  15:49:00  mara
  26. # xset.c split into xset.c, xselect.c,
  27. # xevent.c, and xdata created to handle data
  28. # for ugens
  29. # Revision 1.4  90/02/21  13:49:12  mara
  30. # With tree and unit_gen files
  31. # Revision 1.3  90/02/11  16:23:52  mara
  32. # X functions divided into 3 files:
  33. # xset.c, xmenu.c and xpanel.c
  34. # reset_choice works.  
  35. # Revision 1.2  90/01/30  11:10:53  mara
  36. # patchmix
  37. # Revision 1.1  90/01/21  12:47:29  mara
  38. # Initial revision
  39.  
  40. patchmix: $(POBJECTS)
  41.     $(CC) -o $@ $(POBJECTS) $(LIBS)
  42.     patchmix
  43.  
  44. patch.o: patch.c plus.h struct.h x.h
  45.  
  46. graph.o: graph.c graph.h plus.h struct.h x.h
  47.  
  48. inst.o: inst.c inst.h plus.h struct.h x.h
  49.  
  50. unit_gen.o: unit_gen.c unit_gen.h plus.h struct.h x.h
  51.  
  52. tree.o: tree.c tree.h plus.h struct.h x.h
  53.  
  54. nutree.o: nutree.c nutree.h plus.h struct.h x.h
  55.  
  56. list.o: list.c list.h plus.h struct.h x.h
  57.  
  58. misc.o: misc.c misc.h plus.h struct.h x.h
  59.  
  60. soundfile.o: soundfile.c plus.h soundfile.h struct.h x.h
  61.  
  62. linker.o: linker.c plus.h struct.h x.h
  63.  
  64. xset.o: xset.c struct.h x.h
  65.  
  66. xevent.o: xevent.c x.h struct.h
  67.  
  68. xselect.o: xselect.c x.h struct.h
  69.  
  70. xmenu.o: xmenu.c x.h struct.h
  71.  
  72. xpanel.o: xpanel.c x.h struct.h
  73.  
  74. xparam.o: xparam.c x.h struct.h
  75.  
  76. xdata.o: xdata.c x.h struct.h
  77.